build: Some whitespace cleanups
authorEmmanuele Bassi <ebassi@gnome.org>
Tue, 18 Apr 2017 13:25:44 +0000 (14:25 +0100)
committerEmmanuele Bassi <ebassi@gnome.org>
Wed, 3 May 2017 14:10:56 +0000 (15:10 +0100)
meson.build

index ca20b0e8c76685cd4c6838f77862dd50f82f1515..0ac6d4448ed6529f50ca9d529d8cbcdf342b6060 100644 (file)
@@ -141,7 +141,7 @@ foreach h : check_headers
 endforeach
 
 # Maths functions might be implemented in libm
-libm = cc.find_library('m', required : false)
+libm = cc.find_library('m', required: false)
 
 check_functions = [
   'dcgettext',
@@ -163,7 +163,7 @@ check_functions = [
 ]
 
 foreach func : check_functions
-  if cc.has_function(func, dependencies : libm)
+  if cc.has_function(func, dependencies: libm)
     cdata.set('HAVE_' + func.underscorify().to_upper(), 1)
   endif
 endforeach
@@ -214,7 +214,7 @@ foreach backend : [['cairo-xlib', x11_enabled],
                    ['cairo-quartz', quartz_enabled],
                    ['cairo', broadway_enabled or wayland_enabled or mir_enabled]]
  if backend[1]
-   dependency(backend[0], version : cairo_req)
+   dependency(backend[0], version: cairo_req)
    cairo_backends += [backend[0]]
  endif
 endforeach
@@ -386,10 +386,9 @@ subdir('examples')
 
 # config.h
 
-configure_file(
-  input : 'config.h.meson',
-  output: 'config.h',
-  configuration: cdata)
+configure_file(input: 'config.h.meson',
+               output: 'config.h',
+               configuration: cdata)
 
 # pkg-config files - bit of a mess all of this